|
| 17: |
|
s(x) +# y |
→ x +# y |
| 18: |
|
(x : xs) ++# ys |
→ xs ++# ys |
| 19: |
|
SUM(x : (y : xs)) |
→ SUM((x + y) : xs) |
| 20: |
|
SUM(x : (y : xs)) |
→ x +# y |
| 21: |
|
SUM(xs ++ (x : (y : ys))) |
→ SUM(xs ++ sum(x : (y : ys))) |
| 22: |
|
SUM(xs ++ (x : (y : ys))) |
→ xs ++# sum(x : (y : ys)) |
| 23: |
|
SUM(xs ++ (x : (y : ys))) |
→ SUM(x : (y : ys)) |
| 24: |
|
s(x) -# s(y) |
→ x -# y |
| 25: |
|
QUOT(s(x),s(y)) |
→ QUOT(x - y,s(y)) |
| 26: |
|
QUOT(s(x),s(y)) |
→ x -# y |
| 27: |
|
LENGTH(x : xs) |
→ LENGTH(xs) |
| 28: |
|
AVG(xs) |
→ QUOT(hd(sum(xs)),length(xs)) |
| 29: |
|
AVG(xs) |
→ HD(sum(xs)) |
| 30: |
|
AVG(xs) |
→ SUM(xs) |
| 31: |
|
AVG(xs) |
→ LENGTH(xs) |
|
The approximated dependency graph contains 7 SCCs:
{17},
{18},
{24},
{27},
{25},
{19}
and {21}.